.text-line-col {
  width: 1em;
  text-align: center;
}
.text-shadow {
  text-shadow: 0px 1px 0px #000000;
}
.text-shadow-2 {
  text-shadow: 0px 2px 2px #000000;
}
.text-shadow-big {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
}
.shadow {
  box-shadow: 0px 6px 71px 24px rgba(181, 187, 197, 0.27);
}
.shadow-md {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
}
.shadow-full {
  box-shadow: 0px 0 0 100vmax rgba(0, 0, 0, 0.4);
}
.shadow-21 {
  box-shadow: 0px 0px 21px 0px rgba(181, 187, 197, 0.27);
}
.shadow-black-21 {
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.21);
}
.shadow--bg-primary {
  box-shadow: 0px 5px 10px 0px rgb(215 7 42 / 50%);
}
.shadow-and-inset {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4),
    0 0 0 1000px rgba(0, 0, 0, 0.4) inset;
}

.mask {
  position: relative;
}
.mask::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  
}
.mask-bottom-4\/10 {
  position: relative;
}
.mask-bottom-4\/10::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
}
.mask-bottom-4\/10-3 {
  position: relative;
}
.mask-bottom-4\/10-3::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
}
.mask-line-white-bottom::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  min-height: 40px;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, .0), rgba(255, 255, 255, 1));
}